Search
PerElementSeriesStyle Constructor (List(List(Brush)), List(List(Brush)), List(List(Double)), List(List(DashStyle)))
See Also
 






Initializes a new instance of the PerElementSeriesStyle class.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public PerElementSeriesStyle (
    List<List<Brush>> fills,
    List<List<Brush>> strokes,
    List<List<Double>> strokeThicknesses,
    List<List<DashStyle>> strokeDashStyles
)

Visual Basic  Copy Code

Public New ( _
    fills As List(Of List(Of Brush)), _
    strokes As List(Of List(Of Brush)), _
    strokeThicknesses As List(Of List(Of Double)), _
    strokeDashStyles As List(Of List(Of DashStyle)) _
)

 Parameters

fills

A list of Brush lists, each list used to draw a different series, and each Brush used to fill individual elements of a series.

strokes

A list of Brush lists, each list used to stroke a different series, and each Brush used to stroke individual elements of a series.

strokeThicknesses

A list of double lists, each list used to stroke a different series, and each double value specifying thickness of individual elements of a series.

strokeDashStyles

A list of DashStyle lists, each list used to stroke a different series, and each DashStyle value specifying style of individual elements of a series.

 See Also